home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 20 code / Scripting the Finder / Finder Tricks / AboutBox.cp next >
Encoding:
Text File  |  1994-10-04  |  726 b   |  29 lines  |  [TEXT/MMCC]

  1. /*================================================================================
  2.     AboutBox.c
  3.     
  4.     ©1994 Greg Anderson
  5.     greggor@apple.com
  6.     
  7.     About box for Zawphing
  8. ================================================================================*/
  9. #include <string.h>
  10. #include <stdlib.h>
  11.  
  12. #include "AboutBox.h"
  13. #include "DialogUtilities.h"
  14. #include "StringUtilities.h"
  15.  
  16.  
  17. //----------------------------------------------------------------------------------------
  18. // ShowAboutBox: 
  19. //
  20. // Display the About box for Zawphing
  21. //----------------------------------------------------------------------------------------
  22. void ShowAboutBox()
  23. {
  24.     //
  25.     // We have a routine in DialogUtilities that does what we want...
  26.     //
  27.     SimpleBox(129);
  28. }
  29.